/* CSS Boiler Plate Start*/

* {
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;

}

/* CSS Boiler Plate End */


/* Defined Constant (Root) Start   */

:root {
    --text-color: black;
    --secondary-color: #5151ef;
    --light-bg-color: rgb(246, 246, 246);
    --dark-bg-color: #0f0f28;
    --main-color: white;
    --sub-text-color: #808080;
    --pane-padding: 32px 100px;
    --primary-font-family: 'Poppins', sans-serif;
    --primary-font-weight: 450;
    --primary-font-style: normal;
    --primary-font-size: 22px;


}

/* Defined Constant (Root) End */


/* Home Start  */
/* Carousel Start  */
.carousel {
    position: relative;
    width: 100%;
    height: 70vh;

    overflow: hidden;
    /* padding-top: 90px; */
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;

}

.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or 'contain' if you want the whole video visible */
    display: block;

}


.carousel-item img {
    width: 45%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);

}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    display: none;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background-color: var(--secondary-color);
}

.h1-p1-container {
    width: 55%;
}

.carousel-1-h {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    width: 100%;
    padding-left: 100px;
    padding-top: 100px;
    z-index: 1001;
    color: black;

    span {
        color: var(--secondary-color);
        font-weight: 700;
    }
}


.carousel-3-p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    padding-left: 100px;
    padding-top: 20px;
    font-size: 18px;
    color: black;
}




/* Carousel End  */
/* Home End  */


/* Responsive Start  */
@media (max-width:617px) {
    .carousel {
        position: relative;
        width: 100%;
        height: 30vh;
        overflow-y: visible;
        overflow-x: hidden;

    }

    .carousel-1-h {
        font-family: "Poppins", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        width: 80%;
        padding-left: 50px;
        padding-top: 50px;
        z-index: 1001;
        /* color: var(--text-color);*/

        span {
            color: var(--secondary-color);
            font-weight: 700;
        }

    }

    .carousel-3-p {
        font-family: "Poppins", sans-serif;
        font-style: normal;
        font-size: 12px;
        padding-left: 50px;
        margin-top: -20px;


    }


    .carousel-control-prev {
        left: 10px;
        display: none;
    }

    .carousel-control-next {
        right: 10px;
        display: none;
    }

    .carousel-indicators {
        position: absolute;

        bottom: 10px;
        left: 50%;
        transform: translateX(-40%);
        display: flex;
        gap: 5px;
    }

}



@media (max-width:400px) {
    .carousel {
        position: relative;
        width: 100%;
        height: 30vh;
        overflow-y: visible;
        overflow-x: hidden;

    }

    .carousel-1-h {
        font-family: "Poppins", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        width: 100%;
        padding-left: 30px;
        padding-top: 20px;
        z-index: 1001;
        /* color: var(--text-color);*/

        span {
            color: var(--secondary-color);
            font-weight: 700;
        }

    }

    .carousel-3-p {
        font-family: "Poppins", sans-serif;
        font-style: normal;
        font-size: 10px;
        padding-left: 30px;
        margin-top: -20px;


    }


    .carousel-control-prev {
        left: 10px;
        display: none;
    }

    .carousel-control-next {
        right: 10px;
        display: none;
    }

    .carousel-indicators {
        position: absolute;

        bottom: 10px;
        left: 50%;
        transform: translateX(-40%);
        display: flex;
        gap: 5px;
    }

}

/* Responsive End  */